home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Games 1995 June / CD-ROM Games Demo CD Disc 6.iso / robinson / install.bat < prev    next >
Encoding:
DOS Batch File  |  1994-05-19  |  1.0 KB  |  63 lines

  1. echo off
  2. IF %1&==& GOTO Erreur
  3. IF %2&==& GOTO Erreur
  4. IF %0==INSTA GOTO :lecture
  5. Cls
  6. echo  
  7. echo     To install this game on your hard disk, you must
  8. echo     have at least 2.9 Mbytes of free disk space.
  9. echo 
  10. pause
  11.  
  12. md %2\ROBINSON
  13. copy %0.BAT %2\ROBINSON\INSTA.BAT
  14. %2
  15. cd %2\ROBINSON
  16. INSTA %1 %2 
  17. goto :fin
  18.  
  19.  
  20. :lecture
  21. echo 
  22. :rec1
  23. echo ***** Insert DISK A in drive %1
  24. pause
  25. if not exist %1\auto.dat goto :rec1
  26. xcopy %1\*.*
  27. if errorlevel 2 goto :erreur2
  28.  
  29. echo 
  30. :rec5
  31. echo ***** Insert DISK B in drive %1
  32. pause
  33. if not exist %1\intro5.io goto :rec5
  34. xcopy %1\*.*
  35. if errorlevel 2 goto :erreur2
  36. goto :reussi
  37.  
  38.  
  39. :reussi
  40. echo 
  41. echo     Installation finished.
  42. echo     To play, choose START.EXE from the ROBINSON sub-directory.
  43. echo 
  44. pause
  45. Goto Fin
  46.  
  47.  
  48. :erreur2
  49. echo 
  50. echo    ***** Procedure interrupted. *****
  51. echo    ***** Installation failed.   *****
  52. echo 
  53. pause
  54. goto :fin
  55.  
  56.  
  57. :Erreur
  58. echo 
  59. echo       INSTALL Source_Drive Destination_Drive
  60. echo       Ex: INSTALL A: C:
  61. echo 
  62. :Fin
  63.